home *** CD-ROM | disk | FTP | other *** search
/ MACD 5 / MACD 5.bin / workbench / tools / czesc_3 / reminder / remplay.rexx < prev    next >
OS/2 REXX Batch file  |  1993-04-11  |  339b  |  14 lines

  1. /* Run Upd if necessary, play a given sample */
  2.  
  3. /* Use with Reminder by selecting ARexx script mode and entering
  4.    "RemPlay sampleid" in Comm/Script-gadget, where "sampleid" is an
  5.    id specidied in your Upd.ids file */
  6.  
  7. parse arg id
  8.  
  9. if (~show('P','PLAY')) then
  10.   address 'COMMAND' 'run >NIL: Progs:Upd -b 10000'
  11.  
  12. address PLAY "id" id
  13.  
  14.